home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / screen / scrtst / frmabout.frm next >
Text File  |  1995-01-24  |  2KB  |  76 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "About Screen Tester"
  6.    ClientHeight    =   2055
  7.    ClientLeft      =   5055
  8.    ClientTop       =   7035
  9.    ClientWidth     =   4365
  10.    Height          =   2460
  11.    Left            =   4995
  12.    LinkTopic       =   "Form2"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   2055
  16.    ScaleWidth      =   4365
  17.    Top             =   6690
  18.    Width           =   4485
  19.    Begin CommandButton cmdOK 
  20.       BackColor       =   &H00C0C0C0&
  21.       Cancel          =   -1  'True
  22.       Caption         =   "&Ok"
  23.       Default         =   -1  'True
  24.       Height          =   375
  25.       Left            =   1605
  26.       TabIndex        =   1
  27.       Top             =   1500
  28.       Width           =   1155
  29.    End
  30.    Begin Label lblAbout 
  31.       Alignment       =   2  'Center
  32.       BackColor       =   &H00C0C0C0&
  33.       BorderStyle     =   1  'Fixed Single
  34.       FontBold        =   -1  'True
  35.       FontItalic      =   0   'False
  36.       FontName        =   "Arial"
  37.       FontSize        =   8.25
  38.       FontStrikethru  =   0   'False
  39.       FontUnderline   =   0   'False
  40.       ForeColor       =   &H00800000&
  41.       Height          =   1155
  42.       Left            =   840
  43.       TabIndex        =   0
  44.       Top             =   120
  45.       Width           =   3315
  46.    End
  47.    Begin Shape shpShadow 
  48.       BackColor       =   &H00808080&
  49.       BackStyle       =   1  'Opaque
  50.       Height          =   1155
  51.       Left            =   900
  52.       Top             =   180
  53.       Width           =   3315
  54.    End
  55.    Begin Image imgIcon 
  56.       Height          =   480
  57.       Left            =   120
  58.       Picture         =   FRMABOUT.FRX:0000
  59.       Top             =   120
  60.       Width           =   480
  61.    End
  62. End
  63. Option Explicit
  64.  
  65. Sub cmdOK_Click ()
  66.   Unload Me
  67. End Sub
  68.  
  69. Sub Form_Load ()
  70.   SetDialogMenu Me
  71.   PlaceDialog frmMain, Me, DLG_CENTERED
  72.   lblAbout.Caption = "Screen Tester" & Chr$(13) & Chr$(10) & "Version 2.0 (1/24/95)" & Chr$(13) & Chr$(10) & "Copyright 1995 J. Frank Carr" & Chr$(13) & Chr$(10) & "All Rights Reserved"
  73.   imgIcon.Picture = frmMain.Icon
  74. End Sub
  75.  
  76.